home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / shftstrt.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  26 lines

  1. /* RCSVER $Id: shftstrt.sql,v 1.2 1999-03-07 23:27:47-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        shftstrt.sql  
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the shftstrt table. shftstrt contains information       
  9. *        from the start shift farebox record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE shftstrt 
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_shftstrt REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     shift_seq    NUMBER(38),    /* Shift sequence number */
  19.     user_id        NUMBER(38),    /* ID of operator */
  20.     route_id    NUMBER(38),    /* Route in effect */
  21.     run_id        NUMBER(38),    /* Run in effect */
  22.     trip_id        NUMBER(38),    /* Trip in effect */
  23.     fareset_id    NUMBER(38),    /* Fareset being used */
  24.     CONSTRAINT pk_shftstrt PRIMARY KEY (det_seq_num)
  25. );
  26.